home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Workbench Add-On
/
Workbench Add-On - Volume 1.iso
/
Dev
/
Oberon
/
s
/
Oberon-Startup
< prev
Wrap
Text File
|
1994-10-03
|
1KB
|
46 lines
; $RCSfile: Oberon-Startup $
;Description: Aliases to simplify using Oberon-A from the Shell.
;
; Assumes that symbol and object files are kept in the Code
; sub-directory and library modules' symbol and object files
; are kept in OLIB: and source files have a '.mod' extension.
;
; Intended to be appended to your normal Shell-Startup.
;
; Created by: fjc (Frank Copeland)
; $Revision: 1.1 $
; $Author: fjc $
; $Date: 1994/05/19 23:42:47 $
;________________________________________________________________________
Path OBERON-A:C Add
; Purpose: compile a program module.
; Usage: OComp <module>
Alias OComp OC SYM Code DST Code DEBUG [].mod
; Purpose: compile a library module.
; Usage: OLib <module>
Alias OLib OC DST OLIB: DEBUG [].mod
; Purpose: determine the dependants of a module.
; Usage: ODepend <module>
Alias ODepend ORU SYM Code/ []
; Purpose: batch compile the dependants of a module, assuming that
; ODepend has already been called.
; Usage: OBatch <module>
Alias OBatch OC SYM Code DST Code DEBUG BATCH [].bat
; Purpose: pre-link a program
; Usage: OLink <program>
Alias OLink OL SRC Code DST Code []
; Purpose: link a program, assuming OLink has already been called
; Usage: Link <program>
Alias Link BLink WITH Code/[].with VERBOSE NODEBUG SMALLDATA
; Purpose: link a program, assuming OLink has already been called
; Usage: Link <program>
Alias SLink BLink WITH Code/[].with VERBOSE NODEBUG SMALLDATA SMALLCODE